css parser tests: Drop tests for -gtk-gradient
authorMatthias Clasen <mclasen@redhat.com>
Fri, 31 Mar 2017 16:36:33 +0000 (12:36 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 31 Mar 2017 16:48:05 +0000 (12:48 -0400)
No longer needed.

testsuite/css/parser/Makefile.am
testsuite/css/parser/declarations-valid-19.css [deleted file]
testsuite/css/parser/declarations-valid-19.ref.css [deleted file]
testsuite/css/parser/declarations-valid-20.css [deleted file]
testsuite/css/parser/declarations-valid-20.ref.css [deleted file]
testsuite/css/parser/declarations-valid-21.css [deleted file]
testsuite/css/parser/declarations-valid-21.ref.css [deleted file]

index 2cc81728f75cd2f7fd6a9859e8409ff8a3c1d681..e691bd23ee0ba1f87f7955fc52a7c04291ababe8 100644 (file)
@@ -319,12 +319,6 @@ test_data = \
        declarations-valid-17.ref.css \
        declarations-valid-18.css \
        declarations-valid-18.ref.css \
-       declarations-valid-19.css \
-       declarations-valid-19.ref.css \
-       declarations-valid-20.css \
-       declarations-valid-20.ref.css \
-       declarations-valid-21.css \
-       declarations-valid-21.ref.css \
        declarations-valid-22.css \
        declarations-valid-22.ref.css \
        declarations-valid-23.css \
diff --git a/testsuite/css/parser/declarations-valid-19.css b/testsuite/css/parser/declarations-valid-19.css
deleted file mode 100644 (file)
index 423f672..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-* { background-image: -gtk-gradient (linear,               
-                                    left top, right top,   
-                                    from (#fff), to (#000)) }
diff --git a/testsuite/css/parser/declarations-valid-19.ref.css b/testsuite/css/parser/declarations-valid-19.ref.css
deleted file mode 100644 (file)
index a95b753..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-* {
-  background-image: -gtk-gradient (linear, left top, right top, from (rgb(255,255,255)), to (rgb(0,0,0)));
-}
diff --git a/testsuite/css/parser/declarations-valid-20.css b/testsuite/css/parser/declarations-valid-20.css
deleted file mode 100644 (file)
index 1095225..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-* { background-image: -gtk-gradient (linear,               
-                                    0.0 0.5, 0.5 1.0,      
-                                    from (#fff),           
-                                    color-stop (0.5, #f00),
-                                    to (#000))              }
diff --git a/testsuite/css/parser/declarations-valid-20.ref.css b/testsuite/css/parser/declarations-valid-20.ref.css
deleted file mode 100644 (file)
index d9d6c17..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-* {
-  background-image: -gtk-gradient (linear, left center, center bottom, from (rgb(255,255,255)), color-stop (0.5, rgb(255,0,0)), to (rgb(0,0,0)));
-}
diff --git a/testsuite/css/parser/declarations-valid-21.css b/testsuite/css/parser/declarations-valid-21.css
deleted file mode 100644 (file)
index 8986615..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-* { background-image: -gtk-gradient (radial,               
-                                     center center, 0.25,   
-                                     center center, 0.75,   
-                                     color-stop (0.0,#fff),
-                                     color-stop (1.0,#000))}
-
diff --git a/testsuite/css/parser/declarations-valid-21.ref.css b/testsuite/css/parser/declarations-valid-21.ref.css
deleted file mode 100644 (file)
index 4495fa6..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-* {
-  background-image: -gtk-gradient (radial, center center, 0.25, center center, 0.75, from (rgb(255,255,255)), to (rgb(0,0,0)));
-}